home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Database / BooleanFormatter / TableViewController.h < prev    next >
Text File  |  1995-06-12  |  558b  |  28 lines

  1. /* TableViewController.h
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  *
  6.  * Written by: Mai Nguyen, NeXT Developer Support
  7.  *
  8.  *
  9.  */
  10.  
  11. #import <appkit/appkit.h>
  12. #import <dbkit/dbkit.h>
  13. #import <libc.h>
  14.  
  15. @interface TableViewController:Object
  16. {
  17.     id    dbDatabase;
  18.     id    dbTableView;
  19.     id    newFormatter;
  20.     id    window;
  21. }
  22.  
  23. - appDidInit:sender;
  24. - (BOOL)db:aDb willEvaluateString:(const char*)aString usingBinder:aBinder;
  25. - free;
  26.  
  27. @end
  28.